home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / opendchub.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  70 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5.  
  6. if(description)
  7. {
  8.  script_id(15834);
  9.  script_bugtraq_id ( 11747 );
  10.  script_version("$Revision: 1.2 $");
  11.  name["english"] = "Open DC Hub Remote Buffer Overflow Vulnerability";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host is running a version of Open DC Hub, a peer-to-peer
  16. file sharing application, which is vulnerable to a remote buffer
  17. overflow. A successful exploit would allow a remote attacker to execute
  18. code on the remote host.
  19.  
  20. It must be noted that the remote attacker needs administrative access to
  21. this application.
  22.  
  23. Solution : None at this time.
  24. Risk factor : Medium";
  25.  
  26.  
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Determines if the remote system is running Open DC Hub";
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Security");
  36.  family["english"] = "Peer-To-Peer File Sharing";
  37.  script_family(english:family["english"]);
  38.  script_dependencie("find_service.nes","find_service2.nasl");
  39.  exit(0);
  40. }
  41.  
  42. port = get_kb_item("Services/DirectConnectHub");
  43. if ( port )
  44. {
  45.   sock = open_sock_tcp (port);
  46.   if ( ! sock ) exit(0);
  47.  
  48.   data = recv (socket:sock, length:4000);
  49.   if (egrep (pattern:"This hub is running version 0\.([0-6]\.[0-9]+|7\.([0-9][^0-9]|1[0-4])) of Open DC Hub", string:data))
  50.   {
  51.     security_warning(port);
  52.     exit(0);
  53.   }
  54. }
  55. else
  56. {
  57.   port = get_kb_item("Services/opendchub");
  58.   if ( !port ) exit(0);
  59.  
  60.   sock = open_sock_tcp (port);
  61.   if ( ! sock ) exit(0);
  62.  
  63.   data = recv (socket:sock, length:4000);
  64.   if (egrep (pattern:"Open DC Hub, version 0\.([0-6]\.[0-9]+|7\.([0-9][^0-9]|1[0-4])), administrators port", string:data))
  65.   {
  66.     security_warning(port);
  67.     exit(0);
  68.   }
  69. }
  70.